/* MediaMarkt TRAGBARE KLIMAANLAGE UMFRAGE — DE LANDING PAGE */

:root {
    /* Brand colours — MediaMarkt Red & Black */
    --accent: #DA1C25;
    --accent-hover: #B0151E;
    --accent-light: rgba(218, 28, 37, 0.08);
    --accent-medium: rgba(218, 28, 37, 0.15);
    --accent-50: #FDE8E9;
    --accent-800: #B0151E;
    --accent-dark: #121212;

    /* Surfaces */
    --bg: #F5F5F5;
    --bg-alt: #FDE8E9;
    --white: #FFFFFF;
    --body-bg: #F5F5F5;

    /* Text */
    --text: #1A1A1A;
    --text-secondary: #5C5C5C;
    --text-tertiary: #9A9A9A;
    --text-on-accent: #FFFFFF;

    /* Status */
    --success: #198900;
    --success-light: rgba(25, 137, 0, 0.08);
    --danger: #EF4444;
    --cta-green: #198900;
    --cta-green-hover: #147000;

    /* Borders */
    --border: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.12);
    --border-light: rgba(0, 0, 0, 0.06);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.10);
    --shadow-pop: 0 24px 64px rgba(0, 0, 0, 0.18);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-accent: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.8125rem;
    --fs-base: 0.9375rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;

    /* Spacing */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-full: 9999px;

    /* Easing */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET / BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('bg.webp') no-repeat center center;
    background-size: cover;
    filter: blur(7px);
    transform: scale(1.05);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

input,
textarea {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── LAYOUT UTILITIES ─── */
.container {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.hero-container-wrapper {
    padding-top: 10px;
    max-width: 1000px;
}

/* ─── CARD BASE ─── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: var(--r-xl);
    box-shadow: 0 10px 30px rgba(12, 26, 28, 0.06);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-on-accent);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    width: fit-content;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(12, 26, 28, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.06);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-primary--hero {
    width: 80%;
    min-width: 270px;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-on-accent);
    border: 0;
    box-shadow: 0 4px 14px rgba(12, 26, 28, 0.35);
    font-weight: 800;
    animation: none;
}

.btn-primary--hero::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -200%;
    width: 150%;
    height: 500%;
    opacity: 0;
    transform: rotate(-10deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 1) 92%,
            rgba(255, 255, 255, 0) 100%);
    animation: btn-shine 3s ease-in-out infinite;
}

#start-survey-btn {
    background: var(--accent);
    color: #ffffff;
    border: 0;
    box-shadow: 0 4px 14px rgba(218, 28, 37, 0.3);
    font-weight: 900;
    border-radius: 18px;
    font-size: 20px;
    padding: 15px 34px;
    animation: survey-btn-glow 2.8s ease-in-out infinite;
    width: 400px;
    max-width: 100%;
}

#start-survey-btn:hover {
    background: var(--accent-hover);
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* ─── NOTICE BAR ─── */
.notice-bar {
    background: #000;
    padding: 9px var(--sp-4);
    text-align: center;
    font-family: var(--font-accent);
    font-size: 13.5px;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid rgba(12, 26, 28, 0.18);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.notice-bar * {
    color: #FFFFFF !important;
}

.notice-bar i {
    color: #FFFFFF !important;
    font-size: 11px;
}

.notice-short {
    display: none;
}

/* ─── HERO ─── */
.hero {
    max-width: 600px;
    margin: 0 auto 16px;
    background: #ffffff;
    border: 2px solid #fff;
    border-radius: 0px;
    box-shadow: 0 4px 24px rgba(218, 28, 37, 0.10);
    overflow: hidden;
    padding: 0;
}


.hero-media {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-media-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.hero-header-group {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent);
    border-bottom: 1.5px solid var(--accent-medium);
}

.hero-brand-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
}

.hero-brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.hero-eyebrow {
    display: inline-block;
    width: auto;
    align-self: center;
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    color: #FFFFFF;
    padding: 0;
    letter-spacing: 0.14em;
    margin-top: 6px;
    text-align: center;
}

.hero-body {
    padding: 12px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* ─── HERO PROOF PILL ─── */
.hero-proof-pill {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 6px;
    padding: 5px 14px;
    background: #ffffff;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.hero-proof-stars {
    color: #FFB020;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-proof-text {
    font-size: 11.5px;
    font-weight: 600;
    color: #374151;
}

.live-scarcity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 12px;
    align-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-scarcity-pill.pulse-highlight {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.25);
}

h1.hero-title {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 22px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-title-main {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 900;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.hero-title-sub {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.01em;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.62;
    color: #374151;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc b {
    font-weight: 800;
}

.hero-desc--secondary {
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-secondary);
    text-align: center;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-top: 14px;
}

.hero-cta-urgency {
    font-size: 13.5px;
    color: #374151;
    margin: 6px 0 0;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: center;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ─── TRUST BADGES ─── */
.hero-trust-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 290px;
    margin: 10px auto 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.trust-badge-text {
    font-size: 10px;
    font-weight: 700;
    color: #242424;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* ─── PROMO BADGE (REMOVED) ─── */
.promo-badge {
    display: none !important;
}

.promo-badge-percent {
    font-size: 16px;
    font-weight: 900;
}

.promo-badge-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Desktop: glass chip badges */
@media (min-width: 701px) {
    .hero-trust-badges {
        gap: 10px;
    }

    .trust-badge {
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(12, 26, 28, 0.15);
        border-radius: 10px;
        padding: 8px 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    }

    .trust-badge-text {
        color: #111827;
        font-size: 9.5px;
        letter-spacing: 0.04em;
    }

    .hero-title {
        line-height: 1.25;
    }

    .hero-title-main {
        font-size: clamp(22px, 2.8vw, 34px);
        letter-spacing: -0.03em;
    }

    .hero-title-sub {
        font-size: clamp(19px, 2.4vw, 28px);
        letter-spacing: -0.01em;
    }
}

/* ─── HERO LIVE CODE BLOCK ─── */
.hero-live-code {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    background: var(--accent-light);
    border-radius: 14px;
    padding: 14px 18px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    box-shadow: 0 4px 20px rgba(218, 28, 37, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 4px;
    text-align: center;
}

.hero-live-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
}

.live-code-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    width: 100%;
}

.live-code-label-text {
    color: var(--text-secondary);
    text-align: center;
    width: 100%;
}

.live-code-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.live-code-lock-icon {
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
}

.live-code-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.10em;
    line-height: 1;
    transition: opacity 0.4s ease;
}

.live-code-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.live-code-timer {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* ─── SURVEY ─── */
.survey-section {
    padding: 10px 0;
}

.survey-card.card {
    border-radius: 0px;
    overflow: hidden;
    border: none;
    padding: 0;
    max-width: 800px;
    margin-inline: auto;
}

.survey-inner {
    position: relative;
    background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(12, 26, 28, 0.04) 0%, transparent 70%);
    padding: 20px 24px;
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.survey-progress {
    margin-bottom: 16px;
}

.progress-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.q-counter {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #64748B;
}

.p-counter {
    display: none;
}

.progress-label {
    color: var(--success);
    font-weight: 600;
    font-size: var(--fs-xs);
}

.progress-track {
    height: 6px;
    background: rgba(12, 26, 28, 0.1);
    border-radius: 0px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 0px;
    transition: width 400ms var(--ease-out);
    box-shadow: 0 0 10px rgba(218, 28, 37, 0.45), 0 0 20px rgba(218, 28, 37, 0.2);
}

.question-text {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    margin-bottom: 14px;
    text-align: center;
}

.answers-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.answer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: 13px 18px;
    background: var(--accent);
    color: #FFFFFF;
    border: 1.5px solid var(--accent-hover);
    border-radius: var(--r-sm);
    cursor: pointer;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    animation: reveal-up 0.24s var(--ease-out) both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.answers-grid .answer-btn:nth-child(1) {
    animation-delay: 0s;
}

.answers-grid .answer-btn:nth-child(2) {
    animation-delay: 0.05s;
}

.answers-grid .answer-btn:nth-child(3) {
    animation-delay: 0.10s;
}

.answers-grid .answer-btn:nth-child(4) {
    animation-delay: 0.15s;
}

.answer-btn:hover,
.answer-btn:focus-visible {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(218, 28, 37, 0.2);
}

.answer-btn--selected {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: #FFFFFF;
    transform: none;
    box-shadow: 0 4px 15px rgba(218, 28, 37, 0.3);
}

.answer-btn:active {
    transform: scale(0.98);
}

.answer-btn-letter {
    display: none;
}

.answer-btn-text {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    color: inherit;
}

.survey-slide-out {
    transform: translateX(-40px);
    opacity: 0;
}

.survey-slide-in {
    animation: surveySlideIn 0.25s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.survey-note {
    text-align: center;
    font-size: 13px;
    color: rgb(88, 88, 88);
    font-weight: 500;
    margin-top: 14px;
    letter-spacing: 0.01em;
}

/* ─── VERIFICATION ─── */
.verification-section {
    padding: 10px 0;
}

.card.verif-inner {
    max-width: 650px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid #fff;
    border-radius: 0px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 20px 52px rgba(12, 26, 28, 0.09),
        0 44px 88px rgba(0, 0, 0, 0.09),
        -6px -6px 30px rgba(27, 61, 143, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.verif-header {
    background: var(--accent);
    border-bottom: 1px solid var(--border);
    padding: 14px 22px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.verif-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
}

.verif-header-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
}

.verif-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(12, 26, 28, 0.06);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 14px;
    font-size: 22px;
    color: var(--accent);
    animation: bq-verif-pulse 2s ease-in-out infinite;
    transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

.verif-icon-ring--success {
    background: rgba(0, 127, 59, 0.07);
    border-color: #007F3B;
    color: #007F3B;
    animation: verif-ring-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.verif-title {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 800;
    color: #0A0A0A;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.2;
    padding: 0 24px;
}

.verif-subtitle {
    font-size: 12.5px;
    color: #64748B;
    margin: 0 0 4px;
    padding: 0 24px;
}

.verif-copy-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: none;
    margin: 15px 0;
    padding: 10px 18px;
    background: rgba(240, 245, 230, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(12, 26, 28, 0.09);
    border-bottom: 1px solid rgba(12, 26, 28, 0.09);
}

.verif-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    background: transparent;
    border-radius: 0px;
    border: none;
    opacity: 0.38;
    transition: all 0.25s ease;
    text-align: left;
}

.verif-step-item.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(12, 26, 28, 0.18);
    box-shadow: 0 4px 16px rgba(12, 26, 28, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-radius: 0px;
}

.verif-step-item.done {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 127, 59, 0.18);
    box-shadow: 0 4px 14px rgba(0, 127, 59, 0.10), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-radius: 0px;
}

.verif-step-icon {
    font-size: 14px;
    color: #CBD5E1;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.verif-step-item.active .verif-step-icon {
    color: var(--accent);
}

.verif-step-item.done .verif-step-icon {
    color: #007F3B;
}

.verif-step-text {
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.verif-step-item.active .verif-step-text {
    color: #1A1A1A;
}

.verif-step-item.done .verif-step-text {
    color: #007F3B;
}

.verif-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    max-width: none;
    margin: 0;
    padding: 0 24px 22px;
}

.verif-bar {
    width: 100%;
    height: 7px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    overflow: hidden;
}

.verif-bar-fill {
    height: 100%;
    width: var(--pct, 0%);
    background: linear-gradient(90deg, var(--accent-hover), var(--accent), var(--accent-50), var(--accent));
    background-size: 250% 100%;
    animation: verif-shimmer 2.2s linear infinite;
    border-radius: 0px;
    transition: width 0.5s ease;
}

.verif-percent {
    font-size: 18px;
    font-weight: 700;
    color: #252525;
    min-width: 36px;
    text-align: right;
}

.pop-check-icon {
    animation: popCheck 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* ─── RESULTS ─── */
.results-section {
    padding: 10px 0 0;
}

@media (min-width: 769px) {
    .container {
        padding-inline: 0;
    }
}

.result-badge-wrap {
    background: linear-gradient(130deg, #FAFFFE 0%, #FFFFFF 100%);
    border-radius: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 22px 28px 22px 24px;
    text-align: center;
    position: relative;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}



.result-subtitle {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: var(--sp-4);
    text-align: center;
    margin-left: 0;
    font-weight: 700;
    margin-right: auto;
    max-width: none;
}

.result-subtitle-note {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ff1c1c;
    background: transparent;
    padding: 0;
    font-style: normal;
}

/* ─── RESULT TIMER BAR ─── */
.result-timer-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 18px;
    background: var(--accent);
    border: none;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    animation: timer-pulse 2s ease-in-out infinite;
}

.result-countdown {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

@keyframes timer-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ─── RESULT SCARCITY ─── */
.result-scarcity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid var(--accent-medium);
    border-radius: 99px;
    padding: 6px 16px;
    margin: 10px auto;
    flex-wrap: wrap;
}

.scarcity-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scarcity-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease infinite;
    flex-shrink: 0;
}

.scarcity-sep {
    color: rgba(218, 28, 37, 0.25);
    font-weight: 400;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.result-product {
    max-width: 700px;
    margin: 0 auto 10px;
    padding-inline: 0;
    padding-bottom: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Result card — desktop: single-column layout */
.result-card {
    background: var(--white);
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.065);
    box-shadow: 0 4px 24px rgba(218, 28, 37, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    align-items: stretch;
}

.result-card-img-col {
    display: flex;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    overflow: hidden;
    background: #F4F4F4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    position: static;
    padding: 10px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.result-video {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
    filter: none;
    margin: 0 auto;
}

.result-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px 8px 20px;
    align-items: stretch;
    border-radius: 0px;
}

.result-meta-tag .flag-icon {
    font-size: 14px;
}

.result-title {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    margin: 0;
    text-align: center;
}

.result-rating .stars {
    color: #FFB020;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.result-rating .rating-val {
    font-size: 12px;
    font-weight: 700;
    color: #2D3748;
}

.result-desc {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.result-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    margin: 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.result-pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.result-your-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-your-price-label {
    font-size: 19px;
    font-weight: 700;
}

.result-old-price-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6B7280;
}

.old-price-label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.old-price-val {
    font-size: var(--fs-base);
    color: #e60000;
    text-decoration: line-through;
    font-weight: 600;
}

.result-free-price {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #16A34A;
    display: inline-block;
    animation: price-pulse 2.2s ease-in-out infinite;
}

@keyframes price-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.price-chf-approx--sale {
    font-size: 15px;
    font-weight: 700;
    color: #16A34A;
    white-space: nowrap;
    align-self: center;
}

.result-code-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    background: rgba(230, 0, 0, 0.08);
    color: #e60000;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1.5px solid #e60000;
    width: fit-content;
    line-height: 1.4;
}

.result-code-pill-icon {
    font-size: 10px;
    font-weight: 900;
    background: #198900;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-guarantee-badge {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.result-claim-guarantee {
    font-size: 13px;
    color: #4B5563;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Claim CTA button */
.btn-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    max-width: 100%;
    margin-inline: auto;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 18px;
    padding: 15px 34px;
    background: var(--accent);
    border: none;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(218, 28, 37, 0.3);
    border: 0;
    transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    animation: claim-btn-glow 2.8s ease-in-out infinite;
    margin-top: 8px;
}

.btn-claim:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn-claim i {
    margin-right: 6px;
}

.result-reference-block {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent-50) 100%);
    border: 1px solid rgba(12, 26, 28, 0.13);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(12, 26, 28, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
}

.result-card .result-reference-block {
    display: none;
}

/* ─── RATING DASHBOARD ─── */


.rating-dashboard {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 40px;
    background: #ffffff;
    gap: 24px;
}

.dash-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.trustrate-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.dash-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 16px 0;
}

.dash-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.dash-big-num {
    font-size: 56px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1;
    letter-spacing: -0.02em;
}

.dash-rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-stars-and-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dash-stars-wrapper svg {
    width: 18px;
    height: 18px;
}

.dash-excellent-text {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
}

.dash-based-text {
    font-size: 13px;
    color: #6B7280;
}

.dash-based-text b {
    color: #1A1A1A;
    font-weight: 700;
}

/* Right Column (Breakdown) */
.dash-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.stars-col {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 75px;
    flex-shrink: 0;
}

.stars-col img,
.stars-col svg {
    width: 100%;
    height: auto;
    display: block;
}

.bar-col {
    flex-grow: 1;
}

.bar-bg {
    width: 100%;
    height: 10px;
    background: #E5E7EB;
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #00B890;
    border-radius: 99px;
}

.count-col {
    font-size: 13px;
    color: #6B7280;
    width: 48px;
    text-align: right;
    flex-shrink: 0;
}

/* ─── COMMENTS ─── */
#comment-wrapper {
    padding: 0;
}

.comments-wrap {
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 0px;
    box-shadow: 0 4px 24px rgba(218, 28, 37, 0.10);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto 10px;
    padding: 0;
}

.comments-list {
    border-top: 1px solid #E5E7EB;
}

.cmmtdiv {
    padding: 24px 28px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    box-shadow: none;
    opacity: 0;
    animation: reveal-up 0.24s var(--ease-out) both;
    transition: background-color 0.2s ease;
}

.cmmtdiv:last-child {
    border-bottom: 0;
}


.cmmtdiv:nth-child(1) {
    animation-delay: 0s;
}

.cmmtdiv:nth-child(2) {
    animation-delay: 0.08s;
}

.cmmtdiv:nth-child(3) {
    animation-delay: 0.16s;
}

.cmmtdiv:nth-child(4) {
    animation-delay: 0.24s;
}

.cmmtdiv:nth-child(5) {
    animation-delay: 0.32s;
}

.cmmtdiv:nth-child(6) {
    animation-delay: 0.40s;
}

.cmmtdiv:nth-child(7) {
    animation-delay: 0.48s;
}

.cmmt-header-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: 10px;
}

.cmmt-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.cmmt-avatar-anon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmmt-header-info {
    flex: 1;
    min-width: 0;
}

.cmmt-name-row {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.cmmt-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.cmmt-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #007F3B;
    border-radius: 99px;
    padding: 2px 10px 2px 7px;
}

.cmmt-winner-badge img {
    width: 16px;
    height: 16px;
    display: block;
}

.cmmt-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.cmmt-stars img {
    height: 14px;
    width: auto;
    display: block;
}

.cmmt-city {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 1px;
}

.cmmt-city img {
    display: block;
    border-radius: 1px;
}

.cmmt-city i {
    font-size: 10px;
    margin-right: 2px;
}

.cmmt-date-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.cmmt-date {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

.cmmt-headline {
    font-size: 15.5px;
    font-weight: 800;
    color: #0A0A0A;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 7px;
}

.cmmt-text {
    font-size: 14px;
    line-height: 1.70;
    color: #374151;
    margin-bottom: 12px;
}

.comment-evidence {
    margin-bottom: 10px;
}

.comment-evidence img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
}

.cmmt-footer {
    display: flex;
    align-items: center;
}

.cmmt-likes {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cmmt-likes i {
    color: #E86B6B;
    font-size: 12px;
}

.cmmt-dislikes {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: var(--sp-3);
}

.cmmt-dislikes i {
    color: var(--text-tertiary);
    font-size: 12px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #262626;
    border-top: 1px solid rgba(12, 26, 28, 0.18);
    padding: 52px var(--sp-6) 110px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.footer-badges img {
    width: 54px;
    height: 54px;
    border-radius: var(--r-sm);
    opacity: 0.82;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.08));
}

.footer-copy {
    font-size: 13px;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 11px;
    color: rgb(255, 255, 255);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto var(--sp-4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-6);
}

.footer-link {
    font-size: 11px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 10px 8px;
    display: inline-block;
    transition: color 0.2s ease;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.footer-link:hover {
    color: #147C82;
}

.footer-link:focus-visible {
    outline: 2px solid rgb(255, 255, 255);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── POPUP & MODAL ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--sp-6);
    animation: fade-in 0.25s var(--ease) both;
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    animation: scale-in-soft 0.35s var(--ease-spring) both;
    box-shadow: 0 30px 100px rgba(122, 51, 0, 0.28), 0 10px 40px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 99px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748B;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    font-family: inherit;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1E293B;
}

/* ─── LEGAL MODALS ─── */
.legal-content {
    max-width: 560px;
}

.legal-content .popup-close {
    color: var(--text-secondary);
    background: var(--bg-alt);
}

.legal-content .popup-close:hover {
    background: var(--border-strong);
    color: var(--text);
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.legal-header h2 {
    font-family: var(--font-accent);
    font-size: var(--fs-2xl);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.legal-body {
    padding: var(--sp-8);
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-body b {
    color: var(--text);
}

.legal-body ol {
    padding-left: 20px;
    margin-top: var(--sp-4);
}

.legal-body li {
    margin-bottom: var(--sp-4);
}

.legal-body ul {
    padding-left: 20px;
    margin-top: var(--sp-2);
}

.legal-date {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--sp-4);
}

/* ─── LIVE TOAST NOTIFICATIONS ─── */
.live-toast-container {
    position: fixed;
    bottom: 80px;
    left: 24px;
    z-index: 999;
    pointer-events: none;
    max-width: 360px;
    width: calc(100% - 48px);
}

.live-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    margin-top: 10px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar {
    width: 38px;
    height: 38px;
    background: rgba(12, 26, 28, 0.08);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    object-fit: cover;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
}

.toast-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ─── ANIMATIONS / KEYFRAMES ─── */
@keyframes btn-shine {
    10% {
        opacity: 1;
        top: -30%;
        left: -200%;
    }

    100% {
        opacity: 0;
        top: -30%;
        left: 100%;
    }
}

@keyframes surveySlideIn {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bq-verif-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(12, 26, 28, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(12, 26, 28, 0);
    }
}

@keyframes verif-ring-pop {
    from {
        transform: scale(0.7);
        opacity: 0.5;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes verif-shimmer {
    0% {
        background-position: 250% 0;
    }

    100% {
        background-position: -250% 0;
    }
}

@keyframes popCheck {
    0% {
        transform: scale(0.6);
        color: var(--accent);
    }

    50% {
        transform: scale(1.35);
        color: #10B981;
    }

    100% {
        transform: scale(1);
        color: #10B981;
    }
}

@keyframes scale-in-soft {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flash-success {
    0% {
        background: #fff;
        box-shadow: none;
    }

    25% {
        background: rgba(0, 127, 59, 0.05);
        box-shadow: 0 0 0 4px rgba(0, 127, 59, 0.14);
    }

    100% {
        background: #fff;
        box-shadow: none;
    }
}

@keyframes reveal-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes survey-btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(218, 28, 37, 0.4), 0 0 0 0 rgba(218, 28, 37, 0.2);
    }

    50% {
        box-shadow: 0 6px 26px rgba(218, 28, 37, 0.55), 0 0 0 10px rgba(218, 28, 37, 0);
    }
}

@keyframes claim-btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(218, 28, 37, 0.4), 0 0 0 0 rgba(218, 28, 37, 0.2);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 6px 36px rgba(218, 28, 37, 0.7), 0 0 0 10px rgba(218, 28, 37, 0);
        filter: brightness(1.15);
    }
}

/* ─── HERO SOCIAL PROOF ─── */
.hero-social-proof {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: rgba(0, 48, 130, 0.12);
    border: 1px solid rgba(0, 48, 130, 0.45);
    border-radius: 16px;
}

.hero-stars {
    color: #F59E0B;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

/* --- Hero Header Meta --- */
.hero-header-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-header-meta .hero-social-proof {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: rgba(0, 48, 130, 0.08);
    border: 1px solid rgba(0, 48, 130, 0.25);
    border-radius: 16px;
    margin-top: 0;
}



/* ─── RESULT SPECS DELETED ─── */

/* ─── RESULT PAYMENT ROW ─── */
.result-payment-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0 2px;
    flex-wrap: wrap;
}

.payment-icons-full {
    height: 30px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* ─── FAQ SECTION ─── */
#faq-wrapper {
    padding: 0;
}

.faq-section {
    max-width: 700px;
    margin: 0 auto 10px;
    padding: 20px 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.065);
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.faq-heading {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    background: #f7f8fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0px;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item.open {
    background: #f0f2f5;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    gap: 12px;
    line-height: 1.4;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 12px;
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #1A1A1A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 220px;
    padding: 8px 14px 10px;
    border-top: 1px solid var(--border);
}

/* ─── RESPONSIVE — 768px ─── */
@media (max-width: 768px) {
    .container {
        padding-inline: 16px;
    }

    /* Hero */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        border-radius: 0px;
        padding: 24px 20px;
        background: #ffffff;
        box-shadow: 0 4px 24px rgba(218, 28, 37, 0.10);
        overflow: hidden;
        margin-top: 10px;
    }

    .hero-header-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -24px;
        margin-left: -22px;
        margin-right: -22px;
        padding: 8px 22px;
        background: var(--accent);
        border-bottom: 1.5px solid var(--accent-medium);
        width: calc(100% + 44px);
        box-sizing: border-box;
        gap: 12px;
    }

    .hero-brand-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-brand-logo {
        height: 67px;
        width: auto;
        object-fit: contain;
    }

    .hero-social-proof {
        display: none !important;
    }

    .hero-eyebrow {
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
        background: transparent;
        color: #FFFFFF;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        display: inline-block;
        width: auto;
    }

    .hero-media {
        border: none;
        padding: 0;
        margin: 0 0 20px;
        background: linear-gradient(150deg, var(--accent-50) 0%, var(--bg-alt) 50%, var(--accent) 100%);
    }

    .hero-img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
        margin: 0 auto;
        filter: drop-shadow(0 12px 28px rgba(29, 29, 27, 0.16));
    }

    .hero-body {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 0;
        width: 100%;
        gap: 14px;
    }

    .hero-cta-row {
        width: 100%;
        align-items: center;
        margin-top: 4px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary--hero {
        width: 100%;
    }

    .hero-trust-badges {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        align-self: flex-start !important;
        gap: 10px !important;
        margin: 20px 0 0 10px !important;
        width: fit-content !important;
        max-width: 100% !important;
    }

    .promo-badge {
        display: flex !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        bottom: auto !important;
        left: auto !important;
    }



    .trust-badge {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .trust-badge-icon {
        width: 19px !important;
        height: 19px !important;
    }

    .trust-badge-text {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: #1A0003 !important;
        letter-spacing: 0.04em !important;
    }

    .hero-title {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .hero-title-main {
        font-size: 20px;
        font-weight: 900;
        color: #1A1A1A;
    }

    .hero-title-sub {
        font-size: 19px;
        font-weight: 800;
        color: var(--accent);
    }

    .hero-desc {
        font-size: 13.5px;
        line-height: 1.55;
        text-align: center;
        color: #5C5C5C;
        margin-bottom: 0;
    }

    #start-survey-btn {
        width: 100%;
        font-size: 16px;
        padding: 15px 24px;
        border-radius: 100px;
        border: 1px solid var(--accent-hover);
        justify-content: center;
        background: var(--accent);
        color: #ffffff;
        font-weight: 800;
        box-shadow: 0 4px 14px rgba(218, 28, 37, 0.25);
    }

    .hero-cta-urgency {
        font-size: 11.5px;
        text-align: center;
        width: 100%;
        color: #5C5C5C;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    /* Notice */
    .notice-bar {
        padding: 6px var(--sp-4);
        font-size: 11px;
    }

    .notice-full {
        display: none;
    }

    .notice-short {
        display: inline;
    }

    /* Survey */
    .survey-card.card {
        border-radius: 0px;
    }

    .survey-inner {
        padding: 16px 14px;
    }

    .answers-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .question-text {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .survey-note {
        font-size: 10.5px;
        margin-top: 10px;
    }

    /* Verification */
    .card.verif-inner {
        border-radius: 0px;
    }

    .verif-header {
        padding: 11px 16px;
        border-radius: 0px;
    }

    .verif-icon-ring {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 16px auto 10px;
        border-radius: 50%;
    }

    .verif-title {
        font-size: 17px;
        padding: 0 16px;
    }

    .verif-subtitle {
        font-size: 12px;
        padding: 0 16px;
    }

    .verif-bar-wrap {
        padding: 0 16px 18px;
    }

    .verif-copy-steps {
        padding: 10px 12px;
        margin: 10px 0;
        gap: 5px;
    }

    /* Result */
    .result-badge-wrap {
        padding: 18px 20px;
        border-radius: 0px;
    }

    .result-card {
        grid-template-columns: 1fr;
        border-radius: 0px;
    }

    .result-card-img-col {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        padding: 10px;
        background: transparent;
        border-right: none;
        border-bottom: none;
        display: block;
        box-sizing: border-box;
    }

    .result-video {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }

    .result-details {
        padding: 14px 14px 18px;
        gap: 8px;
    }

    .result-title {
        font-size: 17px;
    }

    .result-desc {
        font-size: 12px;
    }

    .result-subtitle {
        font-size: 14.5px;
    }

    .result-subtitle-note {
        font-size: 13.5px;
    }

    .btn-claim {
        width: 100%;
        font-size: 16px;
        padding: 15px 24px;
        border-radius: 100px;
        border: 1px solid var(--accent-hover);
        background: var(--accent);
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(218, 28, 37, 0.25);
        margin-top: 8px;
    }

    .result-claim-guarantee {
        text-align: center;
    }

    /* Rating Dashboard */
    .rating-dashboard {
        padding: 24px 20px;
        gap: 24px;
    }



    .dash-left {
        border-bottom: 1px solid #E5E7EB;
        padding-bottom: 24px;
        align-items: center;
    }

    .dash-divider {
        margin: 12px 0;
    }

    .dash-rating-row {
        justify-content: center;
    }

    .dash-rating-info {
        align-items: center;
    }

    .breakdown-row {
        gap: 12px;
    }

    .stars-col {
        width: 70px;
    }

    .count-col {
        width: 44px;
    }

    /* Comments */
    .cmmtdiv {
        padding: 18px 16px;
    }

    .cmmt-headline {
        font-size: 14.5px;
    }

    .cmmt-text {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .comment-evidence img {
        width: 110px;
        height: 110px;
        border-radius: 10px;
    }

    /* Footer */
    .site-footer {
        padding-top: 36px;
        padding-bottom: 90px;
    }

    .footer-disclaimer {
        font-size: 10px;
        line-height: 1.55;
        padding-inline: 4px;
    }

    .footer-copy {
        font-size: 11px;
    }

    /* Social proof */
    .hero-social-proof {
        padding: 6px 14px;
    }

    .hero-stars {
        font-size: 13px;
    }

    .hero-rating-text {
        font-size: 11.5px;
    }



    /* Specs Deleted */

    /* FAQ */
    .faq-heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .faq-question {
        font-size: 13.5px;
        padding: 8px 12px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 0 12px;
    }

    .faq-item.open .faq-answer {
        padding: 6px 12px 8px;
    }

    /* Live code */
    .hero-live-code {
        padding: 12px 16px;
        gap: 8px;
    }

    .live-code-header,
    .live-code-body,
    .live-code-footer {
        justify-content: center;
    }

    .live-code-label-text {
        text-align: center;
    }

    .live-code-value {
        font-size: 20px;
    }

    .hero-container-wrapper {
        padding-top: 0;
    }

    .survey-section {
        padding-top: 10px;
    }

    .verification-section {
        padding-top: 10px;
    }

    .results-section {
        padding-top: 10px;
    }
}

/* ─── RESPONSIVE — 480px ─── */
@media (max-width: 480px) {
    .container {
        padding-inline: 14px;
    }

    /* Hero */
    .hero {
        border-radius: 0px;
        padding: 14px 16px;
        margin-top: 10px;
    }

    .hero-header-group {
        margin-top: -20px;
        margin-left: -18px;
        margin-right: -18px;
        padding: 6px 18px;
        background: var(--accent);
        border-bottom: 1.5px solid var(--accent-medium);
        width: calc(100% + 36px);
        box-sizing: border-box;
        gap: 12px;
    }

    .hero-media {
        width: 300px;
        height: 300px;
        margin: 18px auto 8px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .hero-title {
        gap: 2px;
    }

    .hero-title-main {
        font-size: 24px;
    }

    .hero-title-sub {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.45;
        width: 95%;
        margin: 0 auto;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-eyebrow {
        font-size: 10px !important;
        margin-top: 6px !important;
        padding: 0 !important;
        margin-bottom: 10px;
    }

    .hero-brand-logo {
        height: 40px;
        margin-top: 10px;
        margin-bottom: -10px;
    }

    .trust-badge-icon {
        width: 17px !important;
        height: 17px !important;
    }

    .trust-badge-text {
        font-size: 10.5px !important;
    }

    .promo-badge {
        width: 62px !important;
        height: 62px !important;
        top: 8px !important;
        right: 8px !important;
        bottom: auto !important;
        left: auto !important;
        box-shadow: 0 4px 12px rgba(218, 41, 28, 0.45);
    }

    .promo-badge-percent {
        font-size: 16px !important;
    }

    .promo-badge-label {
        font-size: 10px !important;
    }

    .btn-primary--hero {
        width: 100%;
        font-size: 16px;
        padding: 13px 20px;
        border-radius: 100px;
    }

    .hero-body {
        padding: 0;
        gap: 8px;
    }

    /* Survey */
    .survey-inner {
        padding: 12px 10px;
    }

    .question-text {
        font-size: 14.5px;
        margin-bottom: 8px;
        text-align: center;
    }

    .answer-btn {
        padding: 10px 12px;
        min-height: 40px;
        border-radius: 4px;
    }

    .answer-btn-letter {
        display: none;
    }

    .answer-btn-text {
        font-size: 13.5px;
    }

    .survey-note {
        font-size: 10px;
        margin-top: 8px;
    }

    /* Verification */
    .verif-icon-ring {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin: 12px auto 8px;
        border-radius: 50%;
    }

    .verif-title {
        font-size: 16px;
    }

    .verif-step-item {
        padding: 6px 10px;
        border-radius: 0px;
    }

    .verif-bar-wrap {
        padding: 0 12px 14px;
        gap: 6px;
    }

    .verif-copy-steps {
        padding: 8px 10px;
        margin: 8px 0;
        gap: 4px;
    }

    /* Result */
    .result-badge-wrap {
        padding: 14px 16px;
        border-radius: 0px;
    }

    .result-card {
        border-radius: 0px;
    }

    .result-card-img-col {
        padding: 10px;

    }

    .result-details {
        padding: 14px 14px 18px;
        gap: 10px;
        border-radius: 0px;
    }

    .result-title {
        font-size: 17px;
    }

    .result-desc {
        font-size: 13px;
    }

    .result-subtitle {
        font-size: 13.5px;
    }

    .result-subtitle-note {
        font-size: 13.5px;
    }

    .result-free-price {
        font-size: 23px;
        white-space: nowrap;
    }

    .result-guarantee-badge {
        max-height: 48px;
    }

    .result-your-price-row {
        font-size: 11.5px;
        gap: 4px;
    }

    .result-old-price-row {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 11.5px;
    }

    .result-your-price-label,
    .old-price-label {
        white-space: nowrap;
        font-size: 19px;
        font-weight: 700;
        color: #000000;
    }

    .btn-claim {
        font-size: 15px;
        padding: 14px 20px;
        border-radius: 100px;
    }

    .btn-claim i {
        display: none;
    }

    .result-product {
        padding-inline: 0;
    }



    .dash-big-num {
        font-size: 44px;
    }

    .breakdown-row {
        gap: 8px;
    }

    .stars-col {
        width: 65px;
    }

    .stars-col img,
    .stars-col svg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Comments */
    .cmmtdiv {
        padding: 16px 14px;
    }

    .cmmt-avatar {
        width: 40px;
        height: 40px;
    }

    .cmmt-name {
        font-size: 12.5px;
    }

    .cmmt-winner-badge {
        font-size: 9px;
        padding: 1px 5px;
    }

    .cmmt-city {
        font-size: 10px;
    }

    .cmmt-date {
        font-size: 9px;
    }

    .cmmt-stars img {
        height: 11px;
    }

    .cmmt-headline {
        font-size: 14px;
    }

    .cmmt-text {
        font-size: 13px;
    }

    .comments-wrap {
        border-radius: 0px;
        border-left: none;
        border-right: none;
    }

    /* Footer */
    .footer-badges {
        gap: 10px;
        justify-content: center;
    }

    .footer-badges img {
        width: 48px;
        height: 48px;
    }

    /* Popup / Modal */
    .popup-overlay {
        padding: 12px !important;
    }

    .popup-content {
        border-radius: 0px;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Social proof */
    .hero-social-proof {
        gap: 5px;
        padding: 6px 12px;
    }

    .hero-stars {
        font-size: 12px;
    }

    .hero-rating-text {
        font-size: 10.5px;
    }



    /* Live toast */
    .live-toast-container {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 72px;
    }

    /* Live code */


    /* Live code */
    .live-code-value {
        font-size: 18px;
    }

    .hero-live-code {
        padding: 8px 12px;
        border-radius: 10px;
        gap: 6px;
        margin: 4px auto;
        max-width: 360px;
    }

    .hero-live-code .live-code-label-text {
        font-size: 9.5px;
    }

    .hero-live-code .live-code-timer {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-title-main {
        font-size: 16px;
    }

    .hero-title-sub {
        font-size: 15px;
    }

    .popup-content {
        margin: 0 !important;
    }
}

/* ─── RESPONSIVE — ref row narrow ─── */
@media (max-width: 600px) {
    .ref-desktop-text {
        display: none;
    }


}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Desktop: Option 3 (Centralized Header + Asymmetric bottom columns) */
@media (min-width: 769px) {
    .hero {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        grid-template-rows: auto auto;
        gap: 8px 14px;
        max-width: 900px;
        margin: 10px auto 12px;
        padding: 24px 32px;
        background: #ffffff;
        box-shadow: 0 4px 24px rgba(218, 28, 37, 0.10);
        align-items: center;
    }

    .hero-header-group {
        grid-column: 1 / span 2;
        grid-row: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1.5px solid var(--accent-medium);
        margin-top: -24px;
        margin-left: -34px;
        margin-right: -34px;
        padding: 6px 34px;
        background: var(--accent);
        width: calc(100% + 68px);
        box-sizing: border-box;
        gap: 20px;
    }

    .hero-brand-wrap {
        width: auto;
        display: flex;
        justify-content: flex-start;
        padding: 0;
        margin-bottom: 0;
        align-self: center;
    }

    .hero-brand-logo {
        height: 40px;
        width: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-eyebrow {
        margin: 0;
        align-self: center;
        text-align: right;
        display: inline-block;
        color: #ffffff;
        font-size: 11px;
    }

    .hero-media {
        grid-column: 2;
        grid-row: 2;
        width: 350px;
        height: 350px;
        justify-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin-bottom: 0;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: #FDFBF7;
        height: 350px;
        position: relative;
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 4px 16px rgba(0, 0, 0, 0.02);
    }

    .hero-img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
        margin: 0 auto;
        filter: drop-shadow(0 12px 28px rgba(29, 29, 27, 0.16));
    }


    .promo-badge {
        display: flex !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        bottom: auto !important;
        left: auto !important;
        width: 72px !important;
        height: 72px !important;
        box-shadow: 0 6px 16px rgba(218, 41, 28, 0.4);
    }

    .promo-badge-percent {
        font-size: 18px !important;
    }

    .promo-badge-label {
        font-size: 11px !important;
    }

    .hero-body {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        width: 100%;
        gap: 8px;
    }

    h1.hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0;
        gap: 4px;
    }

    .hero-title-main {
        font-size: clamp(21px, 2.6vw, 31px);
        text-align: center;
    }

    .hero-title-sub {
        font-size: clamp(17px, 2.2vw, 23px);
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-live-code {
        margin: 4px auto;
        width: 100%;
        max-width: 420px;
    }

    .hero-live-code .live-code-value {
        font-size: 19px;
    }

    .hero-live-code .live-code-timer {
        font-size: 15px;
    }

    .hero-live-code .live-code-label-text {
        font-size: 12px;
    }

    .hero-cta-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 6px;
        gap: 8px;
    }

    .btn-primary--hero {
        width: 100%;
        max-width: 360px;
    }

    #start-survey-btn {
        font-size: 19px;
        padding: 14px 30px;
        width: 380px;
    }

    .hero-cta-urgency {
        text-align: center;
        justify-content: center;
        margin-top: 2px;
        font-size: 12.5px;
    }
}

/* ─── RESULT CENTERING HELPERS ─── */
.result-pricing-centered {
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.result-row-centered {
    justify-content: center;
}

/* ─── STICKY CTA BAR ─── */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    padding: 10px 20px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.sticky-visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-product-box {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    flex-shrink: 0;
}

.sticky-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-stars {
    height: 14px;
    width: auto;
}

.sticky-rating-text {
    font-size: 12px;
    color: #e5e7eb;
    font-weight: 500;
}

.sticky-rating-text b {
    color: #ffffff;
    font-weight: 700;
}

.sticky-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.sticky-cta-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: #16A34A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    animation: green-btn-glow 2.0s ease-in-out infinite;
    white-space: nowrap;
    transition: filter 0.2s ease, transform 0.1s ease;
}

.sticky-cta-btn:hover {
    filter: brightness(1.1);
}

.sticky-cta-btn:active {
    transform: translateY(1px);
}

@keyframes green-btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(22, 163, 74, 0.7);
    }
}

@media (max-width: 480px) {
    .sticky-cta-bar {
        padding: 8px 12px;
    }

    .sticky-cta-inner {
        gap: 8px;
    }

    .sticky-product-box {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        padding: 2px;
    }

    .sticky-info {
        gap: 1px;
    }

    .sticky-rating-text {
        font-size: 11px;
    }

    .sticky-review-count {
        display: none;
    }

    .sticky-stars {
        height: 12px;
    }

    .sticky-product-title {
        font-size: 12px;
    }

    .sticky-cta-btn {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 6px;
    }

    .result-scarcity {
        font-size: 11.5px;
        flex-direction: column;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 14px;
        text-align: center;
        align-self: center;
        display: inline-flex;
    }

    .scarcity-sep {
        display: none;
    }
}

/* ─── HIDDEN UTILITY ─── */

.hidden,
.hero.hidden,
.result-card.hidden,
.rating-dashboard.hidden,
.survey-card.hidden,
.verif-inner.hidden,
#intro-section.hidden,
#survey-container.hidden,
#verif-content.hidden,
#final-result-page.hidden {
    display: none !important;
}

.recommend-title b {
    color: #1A1A1A;
}

/* ─── TOP CLAIM BUTTON CRO STYLING ─── */
#top-claim-btn {
    background: var(--accent);
    box-shadow: 0 4px 14px rgba(218, 28, 37, 0.3);
    animation: survey-btn-glow 2.8s ease-in-out infinite;
    font-size: 17px;
    padding: 12px 28px;
    width: 350px;
    margin-top: 15px;
    border: none;
}

#top-claim-btn:hover {
    background: var(--accent-hover);
}

@media (max-width: 768px) {
    #top-claim-btn {
        width: 100%;
        font-size: 14px;
        padding: 11px 20px;
        border-radius: 100px;
        border: none;
    }

    .result-timer-bar {
        font-size: 11.5px;
        padding: 7px 14px;
    }
}